(font-lock-extend-region-wholelines): Test for EOB in addition to BOL.
authorEli Zaretskii <eliz@gnu.org>
Sat, 17 Feb 2007 11:27:26 +0000 (11:27 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 17 Feb 2007 11:27:26 +0000 (11:27 +0000)
lisp/font-lock.el

index 62008ac295b8e3d3d6794dbbb2b5645ce233989c..fd2dedc1dae7685080bf6cf02b1748380a42af3c 100644 (file)
@@ -1075,20 +1075,20 @@ Put first the functions more likely to cause a change and cheaper to compute.")
       (setq font-lock-beg (or (previous-single-property-change
                                font-lock-beg 'font-lock-multiline)
                               (point-min))))
-    ;; 
+    ;;
     (when (get-text-property font-lock-end 'font-lock-multiline)
       (setq changed t)
       (setq font-lock-end (or (text-property-any font-lock-end (point-max)
                                                  'font-lock-multiline nil)
                               (point-max))))
     changed))
-  
-  
+
 (defun font-lock-extend-region-wholelines ()
   "Move fontification boundaries to beginning of lines."
   (let ((changed nil))
     (goto-char font-lock-beg)
-    (unless (bolp) (setq changed t font-lock-beg (line-beginning-position)))
+    (unless (or (bolp) (eobp))
+      (setq changed t font-lock-beg (line-beginning-position)))
     (goto-char font-lock-end)
     (unless (bolp)
       (unless (eq font-lock-end